path.lazybuf.w (field)

19 uses

	path (current package)
		path.go#L21: 	w   int
		path.go#L33: 		if b.w < len(b.s) && b.s[b.w] == c {
		path.go#L34: 			b.w++
		path.go#L38: 		copy(b.buf, b.s[:b.w])
		path.go#L40: 	b.buf[b.w] = c
		path.go#L41: 	b.w++
		path.go#L46: 		return b.s[:b.w]
		path.go#L48: 	return string(b.buf[:b.w])
		path.go#L102: 			case out.w > dotdot:
		path.go#L104: 				out.w--
		path.go#L105: 				for out.w > dotdot && out.index(out.w) != '/' {
		path.go#L106: 					out.w--
		path.go#L110: 				if out.w > 0 {
		path.go#L115: 				dotdot = out.w
		path.go#L120: 			if rooted && out.w != 1 || !rooted && out.w != 0 {
		path.go#L131: 	if out.w == 0 {